home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Swat / about.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-05-22  |  553 b   |  35 lines

  1. unit about;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TAboutBox = class(TForm)
  11.     Panel1: TPanel;
  12.     ProgramIcon: TImage;
  13.     ProductName: TLabel;
  14.     Hits: TLabel;
  15.     Copyright: TLabel;
  16.     Comments: TLabel;
  17.     Escape: TLabel;
  18.     Miss: TLabel;
  19.     Label1: TLabel;
  20.     OKButton: TButton;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   AboutBox: TAboutBox;
  29.  
  30. implementation
  31.  
  32. {$R *.dfm}
  33.  
  34. end.
  35.